popovermenu: Reinstate section title handling
authorMatthias Clasen <mclasen@redhat.com>
Fri, 17 Apr 2020 17:53:56 +0000 (13:53 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 17 Apr 2020 17:53:56 +0000 (13:53 -0400)
We were creating a hbox with separators around the label,
but forgot to arrange sizing to prevent the separators from
shrinking into nothingness.

gtk/gtkmenusectionbox.c

index 16d5061b4a14a2ddc76285298649c08d772500f2..7933f81dfa09f7b16359a80a22f17bde96a997f2 100644 (file)
@@ -618,6 +618,7 @@ gtk_menu_section_box_new_section (GtkMenuTrackerItem *item,
       separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
       gtk_widget_set_valign (separator, GTK_ALIGN_CENTER);
       gtk_container_add (GTK_CONTAINER (box->separator), separator);
+      gtk_size_group_add_widget (box->indicators, separator);
 
       title = gtk_label_new (label);
       g_object_bind_property (item, "label", title, "label", G_BINDING_SYNC_CREATE);
@@ -627,6 +628,7 @@ gtk_menu_section_box_new_section (GtkMenuTrackerItem *item,
 
       separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
       gtk_widget_set_valign (separator, GTK_ALIGN_CENTER);
+      gtk_widget_set_hexpand (separator, TRUE);
       gtk_container_add (GTK_CONTAINER (box->separator), separator);
     }
   else